home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / iparam.h < prev    next >
C/C++ Source or Header  |  1995-01-29  |  4KB  |  99 lines

  1. /* Copyright (C) 1993, 1995 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* iparam.h */
  20. /* Interpreter-level implementations of parameter dictionaries */
  21. /* Requires istack.h */
  22. #include "gsparam.h"
  23.  
  24. /*
  25.  * This file defines the interface to iparam.c, which provides
  26.  * several implementations of the parameter dictionary interface
  27.  * defined in gsparam.h:
  28.  *    - an implementation using dictionary objects;
  29.  *    - an implementation using name/value pairs in an array;
  30.  *    - an implementation using name/value pairs on a stack.
  31.  *
  32.  * When reading ('putting'), these implementations keep track of
  33.  * which parameters have been referenced and which have caused errors.
  34.  * The results array contains 0 for a parameter that has not been accessed,
  35.  * 1 for a parameter accessed without error, or <0 for an error.
  36.  */
  37.  
  38. typedef struct iparam_loc_s {
  39.     ref *pvalue;            /* (actually const) */
  40.     int *presult;
  41. } iparam_loc;
  42.  
  43. #define iparam_list_common\
  44.     gs_param_list_common;\
  45.     union {\
  46.       struct {        /* reading */\
  47.         int (*read)(P3(iparam_list *, const ref *, iparam_loc *));\
  48.         ref policies;    /* policy dictionary or null */\
  49.         bool require_all;    /* if true, require all params to be known */\
  50.       } r;\
  51.       struct {        /* writing */\
  52.         int (*write)(P3(iparam_list *, const ref *, const ref *));\
  53.         ref wanted;        /* desired keys or null */\
  54.       } w;\
  55.     } u;\
  56.     int *results;        /* (only used when reading, 0 when writing) */\
  57.     uint count;        /* # of key/value pairs */\
  58.     bool int_keys        /* if true, keys are integers */
  59. typedef struct iparam_list_s iparam_list;
  60. struct iparam_list_s {
  61.     iparam_list_common;
  62. };
  63.  
  64. typedef struct dict_param_list_s {
  65.     iparam_list_common;
  66.     ref dict;
  67. } dict_param_list;
  68. typedef struct array_param_list_s {
  69.     iparam_list_common;
  70.     ref *bot;
  71.     ref *top;
  72. } array_param_list;
  73. /* For stack lists, the bottom of the list is just above a mark. */
  74. typedef struct stack_param_list_s {
  75.     iparam_list_common;
  76.     ref_stack *pstack;
  77.     uint skip;        /* # of top items to skip (reading only) */
  78. } stack_param_list;
  79.  
  80. /* Procedural interface */
  81. /*
  82.  * The const ref * parameter is the policies dictionary when reading,
  83.  * or the key selection dictionary when writing; It may be NULL in either case.
  84.  * If the bool parameter is true, if there are any unqueried parameters,
  85.  * the commit procedure will return an e_undefined error.
  86.  */
  87. int dict_param_list_read(P4(dict_param_list *, const ref * /*t_dictionary*/,
  88.   const ref *, bool));
  89. int dict_param_list_write(P3(dict_param_list *, ref * /*t_dictionary*/,
  90.   const ref *));
  91. int array_param_list_read(P5(array_param_list *, ref *, uint,
  92.   const ref *, bool));
  93. int stack_param_list_read(P5(stack_param_list *, ref_stack *, uint,
  94.   const ref *, bool));
  95. int stack_param_list_write(P3(stack_param_list *, ref_stack *,
  96.   const ref *));
  97. #define iparam_list_release(plist)\
  98.   ifree_object((plist)->results, "iparam_list_release")
  99.